home *** CD-ROM | disk | FTP | other *** search
- /******************************************************************/
- /* */
- /* TurboCAD for Windows */
- /* Copyright (c) 1993 - 2001 */
- /* International Microcomputer Software, Inc. */
- /* (IMSI) */
- /* All rights reserved. */
- /* */
- /******************************************************************/
-
- // QueryHelpDlg.cpp : implementation file
- //
-
- #include "stdafx.h"
- #include "ltsample.h"
- #include "QueryHelpDlg.h"
-
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CQueryHelpDlg dialog
-
-
- CQueryHelpDlg::CQueryHelpDlg(CWnd* pParent /*=NULL*/)
- : CDialog(CQueryHelpDlg::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CQueryHelpDlg)
- //}}AFX_DATA_INIT
- m_cstrHelpString.LoadString(IDS_QUERYHELPSTRING);
- }
-
-
- void CQueryHelpDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CQueryHelpDlg)
- DDX_Text(pDX, IDC_HELPEDIT, m_cstrHelpString);
- //}}AFX_DATA_MAP
- }
-
-
- BEGIN_MESSAGE_MAP(CQueryHelpDlg, CDialog)
- //{{AFX_MSG_MAP(CQueryHelpDlg)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
- /////////////////////////////////////////////////////////////////////////////
- // CQueryHelpDlg message handlers
-